home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch17 / install.bat
DOS Batch File  |  1994-10-10  |  2KB  |  59 lines

  1. @ECHO OFF
  2. REM %1=DRIVE
  3. REM -----------------------------
  4. ECHO  
  5. ECHO ╔═════════════════════════════════════════════════════╗
  6. ECHO ║                                                     ║
  7. ECHO ║ PC Graphics Unleashed                               ║
  8. ECHO ║                                                     ║
  9. ECHO ║ CD-ROM Installation Program                         ║
  10. ECHO ║                                                     ║
  11. ECHO ╚═════════════════════════════════════════════════════╝
  12. ECHO  
  13. ECHO  
  14. ECHO ─────────────────────────────────────────────────────────────
  15. ECHO   The files for Chapter 17 will be installed to your %1
  16. ECHO   hard drive. You need at least 2 megabytes of free space.
  17. ECHO.
  18. ECHO.
  19. ECHO   If this is NOT what you want to do, press the Ctrl + C 
  20. ECHO   keys to stop this batch program.
  21. ECHO ─────────────────────────────────────────────────────────────
  22. ECHO  
  23. ECHO  
  24. ECHO  
  25. PAUSE Paused... press any key to continue the installation
  26. CLS
  27. ECHO  
  28. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  29. ECHO │ The software will now be installed to your %1 hard drive.             │
  30. ECHO │ You'll see a message telling you when the installation is finished.   │
  31. ECHO └───────────────────────────────────────────────────────────────────────┘
  32. IF EXIST C:\PCGU\nul GOTO COPYING
  33. MD C:\PCGU
  34. :COPYING
  35. MD C:\PCGU\CH17
  36. MD C:\PCGU\CH17\BAS
  37. MD C:\PCGU\CH17\PI
  38. XCOPY \CH17\BAS\*.* %1\PCGU\CH17\BAS\
  39. XCOPY \CH17\PI\*.* %1\PCGU\CH17\PI\ /S /E
  40. CLS
  41. ECHO 
  42. ECHO  
  43. ECHO ═════════════════════════════════════════════════════════════════
  44. ECHO.
  45. ECHO   The installation of the Chapter 17 software is complete.
  46. ECHO   You'll find the files in the %1\PCGU\CH17 directory. 
  47. ECHO.
  48. ECHO   The animations for this chapter were not installed to your
  49. ECHO   hard drive. To play one of these animations, change to the
  50. ECHO   \CH17\FLICS directory and run any of the EXE files. Press 
  51. ECHO   the 1 through 0 keys to speed up or slow down the animation.
  52. ECHO   Press the Esc key to exit the animation.
  53. ECHO.
  54. ECHO ═════════════════════════════════════════════════════════════════
  55. ECHO  
  56. ECHO  
  57. pause
  58. cls
  59.